home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / xnews.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  67 lines

  1. #
  2. # This script was written by Audun Larsen <larsen@xqus.com>
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_version ("$Revision: 1.3 $");
  8.  script_id(12068);
  9.  script_bugtraq_id(4283);
  10.  name["english"] = "x-news 1";
  11.  name["francais"] = "x-news 1";
  12.  script_name(english:name["english"], francais:name["francais"]);
  13.  
  14.  desc["english"] = "
  15. X-News is a news management system, written in PHP. X-News uses a flat-file database to store information. 
  16. It will run on most Unix and Linux variants, as well as Microsoft Windows operating systems.
  17.  
  18. X-News stores user IDs and MD5 hashes in a world-readable file (db/users.txt). This is the same information that 
  19. is issued by X-News in cookie-based authentication credentials. An attacker may incorporate this information into 
  20. cookies and then submit them to gain unauthorized access to the X-News administrative account. 
  21.  
  22. Solution : Deny access to the files inside the db/ directory trough the webserver. 
  23. Risk factor : Low";
  24.  
  25.  script_description(english:desc["english"]);
  26.  summary["english"] = "Check if version of x-news 1.x is installed";
  27.  script_summary(english:summary["english"]);
  28.  script_category(ACT_GATHER_INFO);
  29.  script_copyright(english:"This script is Copyright (C) 2004 Audun Larsen");
  30.  family["english"] = "CGI abuses";
  31.  script_family(english:family["english"]);
  32.  script_require_ports("Services/www", 80);
  33.  script_dependencies("http_version.nasl");
  34.  exit(0);
  35. }
  36.  
  37. #
  38. # The script code starts here
  39. #
  40. include("http_func.inc");
  41. include("http_keepalive.inc");
  42.  
  43. port = get_http_port(default:80);
  44.  
  45. if(!get_port_state(port))exit(0);
  46. if(!can_host_php(port:port))exit(0);
  47.  
  48.  
  49. foreach z (cgi_dirs())
  50. {
  51.  req = http_get(item:string(z, "/x_news.php"), port:port);
  52.  res = http_keepalive_send_recv(port:port, data:req);
  53.  if( res == NULL ) exit(0);
  54.  if("Powered by <a href='http://www.xqus.com'>x-news</a> v.1.1" >< res)
  55.  {
  56.    req2 = http_get(item:string(z, "/db/users.txt"), port:port);
  57.    res2 = http_keepalive_send_recv(port:port, data:req2);
  58.    if( res2 == NULL ) exit(0);
  59.    if("|1" >< res2)
  60.    {
  61.       security_warning(port);
  62.       exit(0);
  63.    } 
  64.   } 
  65. }
  66.  
  67.